home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / file-tra / fsp-2.7 / fsp-2 / fsp / bsd_src / Makefile < prev    next >
Encoding:
Makefile  |  1993-05-21  |  1.3 KB  |  34 lines

  1. # This subdirectory contains modified version of files obtained from the
  2. # uunet.uu.net archive.
  3.  
  4. # The bsd glob.c file had a bug in blkfree function in that it tries to
  5. # free something that is actually on the stack of the glob function.
  6. # The last call to free has been commented out to fix the bug.
  7.  
  8. BSDOBJS    = cmp.o find.o fnmatch.o function.o glob.o ls.o operator.o \
  9.       option.o print.o util.o
  10.  
  11. all: libbsdfsp.a
  12.  
  13. libbsdfsp.a:${PARALLEL_MAKE} ${BSDOBJS}
  14.     ${RM} -f libbsdfsp.a
  15.     ${AR} ${ARFLAGS} libbsdfsp.a ${BSDOBJS}
  16.     ${RANLIB} libbsdfsp.a
  17.  
  18. clean:
  19.     ${RM} -f *.o *.a
  20.  
  21. cmp.o: cmp.c ../include/ls.h ../include/tweak.h ../include/proto.h
  22. find.o: find.c ../include/find.h ../include/tweak.h ../include/proto.h
  23. fnmatch.o: fnmatch.c ../include/tweak.h ../include/proto.h
  24. function.o: function.c ../include/find.h ../include/tweak.h ../include/proto.h
  25. glob.o: glob.c ../include/client_def.h ../include/common_def.h
  26. glob.o: ../include/tweak.h ../include/proto.h
  27. ls.o: ls.c ../include/client_def.h ../include/common_def.h ../include/proto.h
  28. ls.o: ../include/ls.h ../include/tweak.h ../include/proto.h
  29. operator.o: operator.c ../include/find.h ../include/tweak.h ../include/proto.h
  30. option.o: option.c ../include/find.h ../include/tweak.h ../include/proto.h
  31. print.o: print.c ../include/ls.h ../include/tweak.h ../include/proto.h
  32. util.o: util.c ../include/tweak.h ../include/proto.h
  33.  
  34.